PhpStorm 2026.2 EAP: фокус на WSL 2 / Dev Containers, дженерики PHPDoc и производительность
Источник: https://blog.jetbrains.com/phpstorm/2026/05/phpstorm-2026-2-early-access-program-has-started/
Краткое содержание
JetBrains открыли Early Access Program для PhpStorm 2026.2. Ключевые направления релиза: «нативный режим» для удалённой разработки (значимое улучшение работы с проектами на WSL 2 и в Dev Containers), развитие понимания PHPDoc-дженериков и общая работа над производительностью — снижение времени запуска, индексирования и заметных «фризов». EAP-сборки публикуются еженедельно, бесплатны и могут устанавливаться рядом со стабильной версией, в том числе через Toolbox App или с включением канала EAP в настройках IDE.
Значимость
Релиз продолжает курс JetBrains на «удалённый рабочий стол как первый класс»: WSL 2 и Dev Containers становятся равноправными целями для индексирования и run-конфигураций, что важно для команд с гетерогенными окружениями. Развитие PHPDoc-дженериков сближает PHP-эргономику в IDE с тем, что есть в Java/Kotlin, и снижает риск ошибок типов в крупных кодовых базах.
/**
* @template T
* @param iterable<T> $items
* @return list<T>
*/
function toList(iterable $items): array {
return iterator_to_array($items, false);
}
🧾 Транскрипт (формат)
PhpStorm 2026.2 Early Access Program Has Started Source: https://blog.jetbrains.com/phpstorm/2026/05/phpstorm-2026-2-early-access-program-has-started/
The Early Access Program (EAP) for the next major PhpStorm 2026.2 release is now open!
PhpStorm’s EAP builds are a great opportunity to try upcoming features for free in your real workflows and share feedback with the PhpStorm team. Your input directly influences what makes it into the final release.
This release, our main areas of focus are:
Native mode for remote development scenarios, as we aim to significantly improve interaction with the projects located on WSL 2 and in Dev Containers. Ongoing enhancements in PhpStorm’s understanding of PHPDoc-based generics. Overall performance and stability improvements, including reduced startup time, indexing time, and freezes. Download PhpStorm 2026.2 EAP
Getting started with the EAP If you’re not familiar with how our Early Access Program (EAP) works, here’s a quick overview:
We release new EAP builds weekly, giving you a sneak peek at upcoming features. EAP builds are completely free to use and do not require a license. You can install the EAP version alongside your stable PhpStorm installation, so there’s no need to uninstall your current version. The most convenient way to access EAP builds and keep both your stable and EAP versions up-to-date is by using our Toolbox App. Alternatively, you can download EAP builds from the EAP page or set up your IDE to automatically receive updates by selecting Check IDE Updates for the Early Access Program under Settings/Preferences | Appearance & Behavior | System Settings | Updates.